home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2004 #2 / K-CD-2-2004.ISO / OpenOffice Sv / f_0397 / python-core-2.2.2 / lib / test / test_frozen.py < prev    next >
Encoding:
Python Source  |  2003-07-18  |  550 b   |  27 lines

  1. # Test the frozen module defined in frozen.c.
  2.  
  3. from test_support import TestFailed
  4. import sys, os
  5.  
  6. try:
  7.     import __hello__
  8. except ImportError, x:
  9.     raise TestFailed, "import __hello__ failed:", x
  10.  
  11. try:
  12.     import __phello__
  13. except ImportError, x:
  14.     raise TestFailed, "import __phello__ failed:", x
  15.  
  16. try:
  17.     import __phello__.spam
  18. except ImportError, x:
  19.     raise TestFailed, "import __phello__.spam failed:", x
  20.  
  21. try:
  22.     import __phello__.foo
  23. except ImportError:
  24.     pass
  25. else:
  26.     raise TestFailed, "import __phello__.foo should have failed"
  27.